home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
By Popular Request 2.0
/
By Popular Request 2.0 (Arsenal Computer).ISO
/
amiga_4
/
mkwrit57.lha
/
WRITETES.REX
< prev
Wrap
OS/2 REXX Batch file
|
1994-05-22
|
2KB
|
77 lines
/*
MkWrite test
*/
say 'Hello, thankyou for yuor intreset in MkWrite,Lets see how it works?'
say ''
if ~exists('rexx:Mkwrite.rexx') then do
say 'Whopps..,No MkWrite.rexx exists in rexx: please copy it there and run this again'
say '07'x
exit(5)
end
say 'Lets edit a letter to send to Mats Kling'
say 'Please leave any comments here'
if ~open(fil,'T:Klingbrev','w') then do
say 'shit, cannot open T:Klingbrev'
exit
end
address command 'wait 2'
call writeln(fil,'')
call writeln(fil,'Hello Mats!')
call writeln(fil,'')
call writeln(fil,'I just recived Mkwrite and now runs a test.')
call writeln(fil,'')
call writeln(fil,'I filled this up:')
call writeln(fil,'')
call writeln(fil,'[ ] Whoo , so great')
call writeln(fil,'[ ] Nice thing this is!')
call writeln(fil,'[ ] YEAAHH Love it!')
call writeln(fil,'[ ] Extremly useful')
call writeln(fil,'')
call writeln(fil,'I send you:')
call writeln(fil,'')
call writeln(fil,'[ ] Amiga 4000')
call writeln(fil,'[ ] $10000')
call writeln(fil,'[ ] DM 100000')
call writeln(fil,'[ ] Amiga 2000 (030 please ;)')
call writeln(fil,'[ ] A netmail')
call writeln(fil,'[ ] A postcard')
call writeln(fil,'')
call writeln(fil,'As a gift for leting me use this..')
call writeln(fil,'')
call writeln(fil,'')
call writeln(fil,'[ ] Please send me a keyfile')
call writeln(fil,'')
call writeln(fil,'I also think:')
call writeln(fil,'')
call writeln(fil,'__________________________')
call writeln(fil,'__________________________')
call writeln(fil,'__________________________')
call writeln(fil,'__________________________')
call writeln(fil,'__________________________')
call writeln(fil,'__________________________')
call writeln(fil,'__________________________')
call writeln(fil,'')
call writeln(fil,'')
call writeln(fil,'Regards.')
call writeln(fil,'_____________ FidoNet___:___/___.___')
call writeln(fil,'')
call writeln(fil,'')
call close(fil)
address command 'ed T:Klingbrev'
say ''
say '<Return>'
parse pull
say ''
say ''
say 'Vhats your name?'
parse pull fran
say 'Yourfidoadress?'
parse pull franadr
say 'sσdΣr jag.. nu skrivs brevet i mail:inbound och nΣsta gσng du tossar sσ skickas det till Mats'
address command 'rx mkwrite -f'fran' -fa'franadr' -tMats Kling -ta2:203/143.0 -aMAIL -sTestar MkWrite -oMkwrite alive at last -teT:Klingbrev'
say ''
address command 'delete >NIL: T:Klingbrev'